home *** CD-ROM | disk | FTP | other *** search
/ PC World 2000 May / PCWorld_2000-05_cd.bin / Software / TemaCD / povray / povwin3.exe / %MAINDIR% / Insert Menu / Misc. Directives / ifdef example.txt < prev    next >
Encoding:
Text File  |  2000-04-06  |  279 b   |  7 lines

  1.   #ifdef (SphereFlake_Shape)
  2.     // This section is  parsed if SphereFlake_Shape is declared
  3.   #else
  4.     // This section is  parsed if SphereFlake_Shape is NOT declared
  5.     #declare SphereFlake_Shape = sphere {0,1} // make a default shape
  6.   #end // End of conditional part
  7.